home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / macio.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  2KB  |  50 lines

  1. /* macio.h: Probe for i2o audio and airport on Apple machines.
  2.  *
  3.  * Copyright (C) 2002 Dan Burcaw <dburcaw@terrasoftsolutions.com>
  4.  *           (C) 2002 Terra Soft Solutions, Inc.
  5.  *         (C) 2003 Red Hat, Inc.
  6.  * 
  7.  * Based on sbus.h 
  8.  * Copyright (C) 1998, 1999 Jakub Jelinek (jj@ultra.linux.cz)
  9.  *           (C) 1999 Red Hat, Inc.
  10.  * 
  11.  * This software may be freely redistributed under the terms of the GNU
  12.  * public license.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  *
  18.  *
  19.  */
  20.  
  21. #ifndef _KUDZU_MACIO_H_
  22. #define _KUDZU_MACIO_H_
  23.  
  24. #include "device.h"
  25.  
  26. struct macioDevice {
  27.     /* common fields */
  28.     struct device *next;        /* next device in list */
  29.     int index;
  30.     enum deviceClass type;     /* type */
  31.     enum deviceBus bus;         /* bus it's attached to */
  32.     char * device;              /* device file associated with it */
  33.     char * driver;              /* driver to load, if any */
  34.     char * desc;                /* a description */
  35.     int detached;
  36.     void * classprivate;
  37.     /* macio specific fields */
  38.     struct macioDevice *(*newDevice) (struct macioDevice *dev );
  39.     void (*freeDevice) ( struct macioDevice *dev );
  40.     void (*writeDevice) (FILE *file, struct macioDevice *dev );
  41.     int (*compareDevice) (struct macioDevice *dev1, struct macioDevice *dev2);
  42. };
  43.  
  44. struct macioDevice *macioNewDevice(struct macioDevice *dev);
  45. struct device *macioProbe(enum deviceClass probeClass,
  46.                    int probeFlags,
  47.                    struct device *devlist);
  48.  
  49. #endif
  50.